* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background-color: #2a2929 !important;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    transition: 0.3s linear;
}

:root{
    --clr-text: #1ca78b;
    --clr-textitems: #3c3d3c;
    --clr-navbar: #1ca78b;
    --clr-background: #e8e8e8; 
    --clr-items: #c0c7cc;
    --clr-textgrey: #3c3d3c;
}

.dark-mode{
    --clr-text: #1ca78b;
    --clr-background: #5c5e5c; 
    --clr-items: #3c3d3c;
    --clr-textgrey: #3c3d3c;
    --clr-textitems: #1ca78b;
}

#container-new{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 5vh;
}

h2{
    color: #1ca78b;
}



.hide{
    display: none;
}






/* cokkie pop up */

.cookie-pop-up{
    text-align: center;
    margin-left: 34%;
    top: 20px;
    bottom: 1%;
    z-index: 100;
    position: sticky;
    height: fit-content;
    width: fit-content;
    padding: 1%;
    margin-bottom: 1%;
    background-color: #3c3d3c;
    color: #1ca78b;
}



.cookie-pop-up p{
    margin-bottom: 0;
}

.cookie-pop-up p a{
    margin-bottom: 0;
    color: #1ca78b;
}

.cookie-pop-up p a:hover{
    margin-bottom: 0;
    color: #1ca78b;
    text-decoration: underline #1ca78b 2px;
}


.cookie-buttons{
    display: flex;
    flex-direction: row;
    text-align: center;
}

.cookie-btn{
    text-align: center;
    margin-bottom: 2%;
    border-radius: 27px;
    width: 10vw;
}

.reject{
    margin-left: 2vw;
}

.accept{
    margin-left: 1vw;
}






.container{
    display: flex;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
}


.main{
    width: 100%;
    max-width: 100vw;
    height: 100vh;
    max-height: 100vh;
    background-size: cover;
    background-position: center;
    background-image: url('https://images.unsplash.com/photo-1501612780327-45045538702b?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    filter: opacity(0.2);
    filter: contrast(0.75);
    z-index: 0;
}

.nav{
    position: fixed;
    top: 5.25rem;
    left: 0;
    width: 100%;
    padding: 10px 0;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    z-index: 9999; /
}

.logo{
    margin-top: -7.5em;
}



ul li{
    display: inline-block;
    margin-right: 1rem;
    color: #1ca78b;
    font-weight: 500;
    text-decoration: none;
    justify-content: space-between right;
    padding: .5rem;
}


button.round{
    transition: 0.3s ease-in-out;
    background-color: #1ca78b;
    border-width: 1px;
    color: #191919;
    border: 2px solid #191919;
    border-radius: 27px;
    margin-top: 1rem;
}



.wipe-efct-btn {
    position: relative;
    overflow: hidden;
    background-color: #1ca78b;
    color: #191919;
    border: 3px solid #191919;
    box-shadow: #191919 3px 2px 3px 2px;
    border-radius: 27px;
    padding: 10px;
    border-radius: 27px; /* Rounded button */
    cursor: pointer;
    transition: color 0.5s ease;
  }
  
  .wipe-efct-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -110%;
    width: 100%;
    height: 100%;
    background-color: red; /* Wipe color */
    color: #1ca78b !important;
    transition: transform 0.5s ease;
    transform: translateX(0);
    z-index: 0;
  }
  
  .wipe-efct-btn:hover::before {
    transform: translateX(110%);
    border-width: 5px;
  }
  
  
  .wipe-efct-btn span {
    position: relative;
    z-index: 1;
  }






button.special{
    box-shadow: #191919 3px 2px 3px 2px;
}


button.cookie-btn:hover{
    transition: 0.3s ease-in-out;
    transform: scale(1.1);
    color: #3c3c3c;
}




.middle-text{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    text-align: center;
  
}

.middle-text h2{
    transition: 0.3s ease-in-out;
    width: 50%;
    margin-top: 1rem;
    color: #1ca78b;
    text-shadow: -1.5px -1.5px 0 #000,  
                  1.5px -1.5px 0 #000,
                 -1.5px  1.5px 0 #000,
                  1.5px  1.5px 0 #000;
    /* background-color: #3c3d3c; */
    /* border: 1.5px solid #1ca78b; */
}


.legal{
    display: flex;
    flex-direction: row;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    margin-top: -5%;
}










/* phones */

@media only screen and (max-width: 600px){
.logo{
    transform: scale(0.8);
    margin-top: -8.5em;
}



.legal{
    padding-bottom: 0;
    margin-top: -5em;
}

.main{
    padding: 0;
}





}